/* ====== BERICHT EINZELN - VORLAGE FÜR NEUE BERICHTE ====== */

.bericht-einzeln {
  background: #fff;
  padding: 80px 20px 60px 20px;
  margin-top: 75px;
  min-height: calc(100vh - 300px);
}

.bericht-container {
  max-width: 850px;
  margin: 0 auto;
}

/* ===== Header Navigation ===== */
.bericht-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.zurueck-link {
  color: #d60000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: color 0.3s ease;
}

.zurueck-link:hover {
  color: #8b0000;
}

.datum-label {
  color: #999;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===== Titel ===== */
.bericht-einzeln h1 {
  font-size: 2.5em;
  color: #333;
  margin: 0 0 25px 0;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* ===== Meta Informationen ===== */
.bericht-meta {
  margin-bottom: 50px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 25px;
}

.bericht-meta p {
  margin: 0;
  color: #666;
  font-size: 0.95em;
}

.quelle {
  color: #0066cc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.autor {
  font-style: italic;
  color: #999;
}

/* ===== Inhalt ===== */
.bericht-inhalt {
  margin-bottom: 50px;
  line-height: 1.9;
}

.bericht-inhalt p {
  color: #555;
  font-size: 1.08em;
  line-height: 1.9;
  margin: 0 0 25px 0;
  text-align: justify;
}

.bericht-inhalt p:last-child {
  margin-bottom: 0;
}

/* ===== Navigation ===== */
.bericht-nav {
  padding-top: 40px;
  border-top: 2px solid #f0f0f0;
  text-align: center;
}

.btn-zurueck {
  display: inline-block;
  padding: 14px 32px;
  background: #d60000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #d60000;
}

.btn-zurueck:hover {
  background: #8b0000;
  border-color: #8b0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 0, 0, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .bericht-einzeln {
    padding: 60px 20px 40px 20px;
  }

  .bericht-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }

  .bericht-einzeln h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .bericht-meta {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 35px;
    padding-bottom: 15px;
  }

  .bericht-inhalt p {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .bericht-einzeln {
    padding: 40px 15px 25px 15px;
    margin-top: 60px;
  }

  .bericht-container {
    padding: 0;
  }

  .bericht-einzeln h1 {
    font-size: 1.6em;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .datum-label {
    font-size: 0.8em;
    letter-spacing: 0.5px;
  }

  .bericht-meta {
    font-size: 0.9em;
    margin-bottom: 25px;
    gap: 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
  }

  .bericht-inhalt p {
    font-size: 0.95em;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 14px;
  }

  .btn-zurueck {
    padding: 12px 24px;
    font-size: 0.9em;
  }
}